8f287cd7bfc856dca97cad65145f5278a90f4042,cdap-app-fabric/src/test/java/co/cask/cdap/internal/app/services/http/handlers/NamespaceHttpHandlerTest.java,NamespaceHttpHandlerTest,listAllNamespaces,#,61
Before Change
}
private int listAllNamespaces() throws Exception {
HttpResponse response = doGet(String.format("%s/namespaces", Constants.Gateway.API_VERSION));
return response.getStatusLine().getStatusCode();
}
private int getNamespace(String name) throws Exception {
After Change
}
private HttpResponse listAllNamespaces() throws Exception {
return doGet(String.format("%s/namespaces", Constants.Gateway.API_VERSION));
}
private HttpResponse getNamespace(String name) throws Exception {